﻿;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; FLEET SCRIPT (Handle AI Planning)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; USAGE:
;
; Basic structure of an AI planning event:
; { 
; #NAME= Event name (this will be shown as a selectable event under an OPTIONS screen within the game)
; #POPUP= Event popup text (this will be displayed when the event occurs)
; #FLAG= Will this be a default event for the campaign? (values range [0, 1]; True= 1; False= 0)
; #TYPE= Values range [0, 3];
;        With all other fields satisfied will this be:
;        0 = Single check regardless if #TRIGGER is satisfied
;        1 = Multiple check until #TRIGGER is satisfied
;        2 = Reoccuring check until end of game
;                       OR
;        Once the #DATE field is satisfied:
;        3 = Event fires once if all other fields are satisfied, else it will not fire.  Either way, event will be removed never to be looked at again
; #LEVEL= What minimum skill level, as selected from the AI difficulty level screen in game, with this event apply to?
;         Values: [0, 4]; Green= 0; Novice= 1; Intermediate= 2; Veteran= 3; Expert= 4
; #GV= Does the event activate based on the Global Variable values assigned?
;      Ten random Global Variables are assigned at the start of the campaign each with a value between [1,100]
;      Format: GV [min, max]; GV range [1,10]; min range [1,100]; max range [1,100]
;      Example A) #GV= 1[1,100] will always trigger because Global Variable #1 will always have a value between [1,100]
;      Example B) #GV= 4[71,100] will trigger 30% per game
; #LINK= Does the event activate based on the Link values assigned?
;        A campaign can have up to 1100 Decision events and is referenced by other events via this parameter
;        Format: decision[flag]; flag range [0, 1]; True= 1; False= 0
;        Example A) #LINK= 0[0] will always trigger as formal DECISION events can only be from 1-1100
;        Example B) #LINK= 1[0] will trigger whenever #DECISION= 1 is not accepted
;        Example C) #LINK= 3[1] will trigger whenever #DECISION= 3 is accepted
; #TRIGGER= Trigger percentage that the event will occur (values range [0, 100])
; #COUNTRY_ID= Country ID associated with this event
; #SIZE= How many units should be assigned to this plan?
;        Format: min_size, max_size
; #BUILD_LENGTH= How many game turns (Central Powers or Entente) do you want the build up period of the plan to last?
; #LENGTH= How many game turns (Central Powers or Entente) should pass before the plan (post #BUILD_LENGTH period) is cancelled?
; #RANGE= How many hexes should we search for units to fulfill this plan?
;         Range checks from both the first listed #FRIENDLY_POSITION and then the #GOAL_POSITION if needed.
; #NAVAL_CRUISE= Should the event apply naval cruise distances for unit movement?  (True= 1; False= 0)
; #UNIT_ID= What unit types will be associated with this plan?
; #GOAL_POSITION= What is the map position that is the objective of this plan?
; #DATE= Date that must be satisfied (in game) for event to occur (format yyyy/mm/dd)
; #FRIENDLY_POSITION= Positions that must be under friendly control in order for event to occur
; #VARIABLE_CONDITION= Under what variable conditions will this event occur
;                      Format: country_id [political_alignment] [min_mobilization%] [surrendered_flag]
; #TACTICAL_CONDITION= Tactical map position (resource) that currently MUST NOT be threatened for event to
;                      occur, i.e. plan owner should have tactical advantage over this position
;                      Format: x,y [tactical_flag]
; #ACTIVATE_POSITION= Condition positions that will serve to ACTIVATE the event.
;                     Looks at distance as well as a selected number of Central Powers/Entente units as specified by 'alignment' flag
;                     Format: x,y [min_range, max_range] [min_units, max_units] [alignment]
; #CANCEL_POSITION= Condition positions that will serve to CANCEL the event.
;                   Looks at distance as well as a selected number of Central Powers/Entente units as specified by 'alignment' flag
;                   Format: x,y [min_range, max_range] [min_units, max_units] [alignment]
; }
;
; NOTES:
;
; Each event must be preceded by a '{' and end with a '}'
;
; Plan identity is determined by #COUNTRY_ID and #GOAL_POSITION.  A country can only have a
; single plan based on this criteria and will be assigned the first valid plan regardless of duplicate
; script entries (even if the remaining control '#' values are different).  
; Note:  This will also allow you to set up a variety of plans with the same identity but different 
; control '#' parameters where the first 'event' satisfied will be the fist plan assigned (for added variability).
;
; #SIZE - This value must be satisfied or the event will not occur.  For example, if the game engine cannot find enough
; enough units to satisfy the #SIZE requirement the event will not be added to the active plan list.
;
; #BUILD_LENGTH= - How long do you want the build up period of the plan to last?  For example, a
; BUILD_UP_FLEET plan that has a #LENGTH= 3 will (after 3 AI turns) automatically become an FLEET plan.
;
; #LENGTH - How long do you want the plan (post #BUILD_LENGTH period) to last?
;
; #UNIT_ID - What unit type(s) will be associated with this plan?  If the value is set to '0' it will assign any available 
; naval unit to this plan otherwise it can be narrowed to select a single unit type such as 'Subs' and no other naval units.
;
; #GOAL_POSITION - BUILD_UP_FLEET plans can have any coastal or set of sea tiles (as part of their #GOAL_POSITION list).
; Note:  If more than one #GOAL_POSITION is listed, these secondary #GOAL_POSITIONs will be considered WAYPOINTS with
;        the top (first) #GOAL_POSITION still representing the final destination position.  For example, this is useful
;        when using NAVAL LOOPs to send units to a specific WAYPOINT or NAVAL LOOP position before continuing to the final
;        #GOAL_POSITION.  If #BUILD_LENGTH > 0 then the units will gather at the second listed #GOAL_POSITION until
;        the #BUILD_LENGTH period expires.  This is useful to help ensure units move as a group after loading.
;
; #FRIENDLY_POSITION - First position must refer to a sea or coastal tile, subsequent positions can refer to either land or coastal tiles.
; Note:  More than one #FRIENDLY_POSITION can be set.  #FRIENDLY_POSITION refers to the current side associated with this 
;        plan.  Each #FRIENDLY_POSITION will be read using AND logic.
;
;        For all AI scripts that use the #FRIENDLY_POSITION field, the AI picks available units closest to and connected to
;        the first #FRIENDLY_POSITION, within #RANGE, and then sends them to the nearest available position for the script; 
;        e.g., a city for a GUARD script, a port for a TRANSPORT script, etc.  All AI scripts require that the first 
;        #FRIENDLY_POSITION be a land tile, with the exception of Fleet scripts.
;
; #VARIABLE_CONDITION - More than one #VARIABLE_CONDITION can be set.  Under #VARIABLE_CONDITION you can also list 
; countries that have not yet fully entered the war.  For example by listing an mobilization % less than 100% you
; are providing a check where the #VARIABLE_CONDITION country must meet a minimum mobilization % (but is
; not yet at 100%) in order for the event to occur.  To check for a fully activated country simply
; list the mobilization % at 100%.  Each #VARIABLE_CONDITION line will be read using AND logic.
;
; More than one #TACTICAL_CONDITION can be set.  #TACTICAL_CONDITION refers to the current side, i.e.
; country associated with this plan having tactical superiority over the specified map position.
; Tactical superiority can be fine tuned via the TACTICAL_ID flag.  Each #TACTICAL_CONDITION line will
; be read using AND logic.
; Note:  TACTICAL_ID= SEA implies that the port or city in question has an adjacent enemy unit in order for it
;        to be threatened.  For example a land locked city can never be threated by SEA so this can be used as a
;        dummy position.
;
; More than one #ACTIVATE_POSITION can be set.  Distance or range checks will be based on the
; specified x,y position.  For example if the x,y position is a coastal tile then range checks will
; be made on sea tiles, otherwise if it is a land tile range checks will be made on land tiles only.
; Each #ACTIVATE_POSITION line will be read using OR logic.
; Note: Once a plan has been properly activated then all references to #ACTIAVATE_POSITION are removed
;       from the plan as these conditions have been satisfied.  Use #CANCEL_POSITION to set the CANCEL conditions
;       based on unit positions for the event.
;
; More than one #CANCEL_POSITION can be set.  Distance or range checks will be based on the
; specified x,y position.  For example if the x,y position is a coastal tile then range checks will
; be made on sea tiles, otherwise if it is a land tile range checks will be made on land tiles only.
; Each #CANCEL_POSITION line will be read using OR logic.
;
; Use the reference values provided for #COUNTRY_ID and not the country names
; Use the reference values provided for #UNIT_ID and not the unit names
; Use the reference values provided for TACTICAL_ID and not tactical names
; Use the reference values provided for POLITICAL ALIGNMENT and not names
; Use the reference values provided for SURRENDER flags and not names
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; COUNTRY ID REFERENCE VALUES
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Country IDs
; #COUNTRY_ID_0= Neutral
; #COUNTRY_ID_1= Armenia
; #COUNTRY_ID_2= Afghanistan
; #COUNTRY_ID_3= Albania
; #COUNTRY_ID_4= Algeria
; #COUNTRY_ID_5= Arabia
; #COUNTRY_ID_6= Australia
; #COUNTRY_ID_7= Austria
; #COUNTRY_ID_8= Austria-Hungary
; #COUNTRY_ID_9= Baltic Duchy
; #COUNTRY_ID_10= Belgium
; #COUNTRY_ID_11= Belarus
; #COUNTRY_ID_12= Basmachi
; #COUNTRY_ID_13= Black
; #COUNTRY_ID_14= Bolivia
; #COUNTRY_ID_15= Borneo
; #COUNTRY_ID_16= Brazil
; #COUNTRY_ID_17= British Somaliland
; #COUNTRY_ID_18= Brunei
; #COUNTRY_ID_19= Bulgaria
; #COUNTRY_ID_20= Burma
; #COUNTRY_ID_21= Canada
; #COUNTRY_ID_22= Chile
; #COUNTRY_ID_23= China
; #COUNTRY_ID_24= Colombia
; #COUNTRY_ID_25= Crimean People's Republic
; #COUNTRY_ID_26= Costa Rica
; #COUNTRY_ID_27= Croatia
; #COUNTRY_ID_28= Cuba
; #COUNTRY_ID_29= Curaçao
; #COUNTRY_ID_30= Czechoslovakia
; #COUNTRY_ID_31= Denmark
; #COUNTRY_ID_32= Don Republic
; #COUNTRY_ID_33= Dutch East Indies
; #COUNTRY_ID_34= Dutch Guiana
; #COUNTRY_ID_35= Ecuador
; #COUNTRY_ID_36= Egypt
; #COUNTRY_ID_37= El Salvador
; #COUNTRY_ID_38= Estonia
; #COUNTRY_ID_39= Finland
; #COUNTRY_ID_40= France
; #COUNTRY_ID_41= Free City of Danzig
; #COUNTRY_ID_42= French Equatorial Africa
; #COUNTRY_ID_43= French Somaliland
; #COUNTRY_ID_44= French West Africa
; #COUNTRY_ID_45= Germany
; #COUNTRY_ID_46= Greece
; #COUNTRY_ID_47= Greenland
; #COUNTRY_ID_48= Guatemala
; #COUNTRY_ID_49= Haiti
; #COUNTRY_ID_50= Honduras
; #COUNTRY_ID_51= Hong Kong
; #COUNTRY_ID_52= Hungary
; #COUNTRY_ID_53= Iceland
; #COUNTRY_ID_54= India
; #COUNTRY_ID_55= Indochina
; #COUNTRY_ID_56= Mesopotamia
; #COUNTRY_ID_57= Ireland
; #COUNTRY_ID_58= Italian East Africa
; #COUNTRY_ID_59= Italy
; #COUNTRY_ID_60= Japan
; #COUNTRY_ID_61= Latvia
; #COUNTRY_ID_62= Liberia
; #COUNTRY_ID_63= Libya
; #COUNTRY_ID_64= Lithuania
; #COUNTRY_ID_65= Luxembourg
; #COUNTRY_ID_66= Malaya
; #COUNTRY_ID_67= Kazan
; #COUNTRY_ID_68= Mexico
; #COUNTRY_ID_69= Mongolia
; #COUNTRY_ID_70= Morocco
; #COUNTRY_ID_71= Kuban People's Republic
; #COUNTRY_ID_72= Nepal
; #COUNTRY_ID_73= Netherlands
; #COUNTRY_ID_74= New Zealand
; #COUNTRY_ID_75= Newfoundland
; #COUNTRY_ID_76= Nicaragua
; #COUNTRY_ID_77= Northern Caucasus
; #COUNTRY_ID_78= Norway
; #COUNTRY_ID_79= Palestine
; #COUNTRY_ID_80= Panama
; #COUNTRY_ID_81= Paraguay
; #COUNTRY_ID_82= Persia
; #COUNTRY_ID_83= Peru
; #COUNTRY_ID_84= Philippines
; #COUNTRY_ID_85= Poland
; #COUNTRY_ID_86= Polynesia
; #COUNTRY_ID_87= Portugal
; #COUNTRY_ID_88= Portuguese East Africa
; #COUNTRY_ID_89= Portuguese Timor
; #COUNTRY_ID_90= Portuguese West Africa
; #COUNTRY_ID_91= Red
; #COUNTRY_ID_92= Rhodesia
; #COUNTRY_ID_93= Romania
; #COUNTRY_ID_94= Serbia
; #COUNTRY_ID_95= Saudi Arabia
; #COUNTRY_ID_96= Slovakia
; #COUNTRY_ID_97= Russia
; #COUNTRY_ID_98= South Africa
; #COUNTRY_ID_99= Spain
; #COUNTRY_ID_100= Spanish Guinea
; #COUNTRY_ID_101= Montenegro
; #COUNTRY_ID_102= Sudan
; #COUNTRY_ID_103= Sweden
; #COUNTRY_ID_104= Switzerland
; #COUNTRY_ID_105= Syria
; #COUNTRY_ID_106= Tannu Tuva
; #COUNTRY_ID_107= Thailand
; #COUNTRY_ID_108= Tibet
; #COUNTRY_ID_109= Transjordan
; #COUNTRY_ID_110= Tunisia
; #COUNTRY_ID_111= Ottoman Empire
; #COUNTRY_ID_112= UK
; #COUNTRY_ID_113= Ukraine
; #COUNTRY_ID_114= Uruguay
; #COUNTRY_ID_115= USA
; #COUNTRY_ID_116= USSR
; #COUNTRY_ID_117= Venezuela
; #COUNTRY_ID_118= Transcaucasian Federation
; #COUNTRY_ID_119= Yemen
; #COUNTRY_ID_120= Yugoslavia
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; UNIT ID REFERENCE VALUES
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; ANY_UNIT= 0
;
; DREADNOUGHT = 35
; BATTLESHIP = 36
; BATTLE CRUISER = 37
; HEAVY CRUISER = 38
; LIGHT CRUISER = 39
; DESTROYER = 40
; LIGHT CARRIER = 41
; CARRIER = 42
; SUB = 43
; MOTOR TORPEDO BOAT = 44
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; TACTICAL ID REFERENCE VALUES
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; ANY= 0
; LAND= 1
; AIR= 2
; NAVAL= 3
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; POLITICAL ALIGNMENT REFERENCE VALUES
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; NEUTRAL= 0
; Central Powers= 1
; Entente= 2
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; SURRENDERED FLAG REFERENCE VALUES
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; NOT_SURRENDERED= 0
; SURRENDERED= 1
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; ALLIED SCRIPTS - Amphibious Build Up Fleet (UK)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Fleet
{
#NAME= UK Build Up Fleet - Amphibious Assault France Support (1)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
; Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
; Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,10
#BUILD_LENGTH= 1
#LENGTH= 10
#RANGE= 50
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Patrol/Escort
#GOAL_POSITION= 152,74
#GOAL_POSITION= 145,80
#DATE= 1915/01/01
; Set friendly positions:
; 1st Line - Rosyth
#FRIENDLY_POSITION= 140,64
; Set variable conditions:
; 1st Line - UK politically aligned with Allies and not surrendered AND
; 2nd Line - France politically aligned with Allies and surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
#VARIABLE_CONDITION= 40 [2] [100] [1]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; 20 Allied Units in the UK
#ACTIVATE_POSITION= 147,77 [20,20] [20,20] [2]
; 1st Line - 1 Axis unit within range of London
#CANCEL_POSITION= 147,77 [20,20] [1,1] [1]
}

; Fleet
{
#NAME= UK Build Up Fleet - Amphibious Assault France Support (2)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
; Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
; Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,10
#BUILD_LENGTH= 1
#LENGTH= 10
#RANGE= 50
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Patrol/Escort
#GOAL_POSITION= 135,83
#GOAL_POSITION= 141,83
#DATE= 1915/01/01
; Set friendly positions:
; 1st Line - Mid Atlantic
#FRIENDLY_POSITION= 97,76
; Set variable conditions:
; 1st Line - UK politically aligned with Allies and not surrendered AND
; 2nd Line - France politically aligned with Allies and surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
#VARIABLE_CONDITION= 40 [2] [100] [1]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; 20 Allied Units in the UK
#ACTIVATE_POSITION= 147,77 [20,20] [20,20] [2]
; 1st Line - 1 Axis unit within range of London
#CANCEL_POSITION= 147,77 [20,20] [1,1] [1]
}


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; UK - Naval Mines
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
{
#NAME= UK Build Up Fleet - Naval Mines - Dover (1)
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 4[1,50]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 2
#RANGE= 30
#NAVAL_CRUISE= 0.0
#UNIT_ID= 0
; Mine Position
#GOAL_POSITION= 151,77
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= UK Build Up Fleet - Naval Mines - Dover (2)
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 4[51,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 2
#RANGE= 30
#NAVAL_CRUISE= 0.0
#UNIT_ID= 0
; Mine Position
#GOAL_POSITION= 150,77
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= UK Build Up Fleet - Naval Mines - North Sea (1)
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 5[1,25]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 3
#RANGE= 30
#NAVAL_CRUISE= 0.0
#UNIT_ID= 0
; Mine Position
#GOAL_POSITION= 154,52
#GOAL_POSITION= 152,53
#GOAL_POSITION= 150,54
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= UK Build Up Fleet - Naval Mines - North Sea (2)
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 5[26,50]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 3
#RANGE= 30
#NAVAL_CRUISE= 0.0
#UNIT_ID= 0
; Mine Position
#GOAL_POSITION= 148,55
#GOAL_POSITION= 146,56
#GOAL_POSITION= 144,57
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= UK Build Up Fleet - Naval Mines - Denmark 
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 5[51,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 3
#RANGE= 30
#NAVAL_CRUISE= 0.0
#UNIT_ID= 0
; Mine Position
#GOAL_POSITION= 161,66
#GOAL_POSITION= 159,67
#GOAL_POSITION= 157,68
#GOAL_POSITION= 155,69
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; UK - Subs
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
{
#NAME= UK Build Up Fleet - 1915 Sub (November)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 3
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 43
; Convoy
#GOAL_POSITION= 157,25
#DATE= 1915/11/08
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= UK Build Up Fleet - 1915 Sub (June)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 2
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 43
; Convoy
#GOAL_POSITION= 150,36
#DATE= 1915/06/06
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= UK Build Up Fleet - 1914 Sub (December)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 2
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 43
; Convoy
#GOAL_POSITION= 151,33
#DATE= 1914/12/31
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}
 

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; UK - Fleet
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
{
#NAME= UK Build Up Fleet - Fleet -> Scapa Flow
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 5,25
#BUILD_LENGTH= 1
#LENGTH= 2
#RANGE= 50
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Scapa Flow
#GOAL_POSITION= 141,53
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Liverpool
#FRIENDLY_POSITION= 140,72
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= UK Build Up Fleet - North Channel / Irish Sea Patrol
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 5,8
#BUILD_LENGTH= 1
#LENGTH= 7
#RANGE= 15
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Scapa Flow
#GOAL_POSITION= 141,53
#GOAL_POSITION= 128,64
#GOAL_POSITION= 134,78
#GOAL_POSITION= 122,79
#GOAL_POSITION= 127,83
#GOAL_POSITION= 134,78
#GOAL_POSITION= 110,62
#DATE= 1915/01/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 141,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured near North Channel OR
; Central Powers have ventured within St George's Channel
#CANCEL_POSITION= 132,66 [7,7] [1,3] [1]
#CANCEL_POSITION= 133,77 [7,7] [1,3] [1]
#CANCEL_POSITION= 126,80 [4,4] [1,3] [1]
}

{
#NAME= UK Build Up Fleet - Protect Channel
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 5,8
#BUILD_LENGTH= 1
#LENGTH= 6
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Rosyth
#GOAL_POSITION= 143,63
#GOAL_POSITION= 134,78
#GOAL_POSITION= 122,79
#GOAL_POSITION= 127,83
#GOAL_POSITION= 140,82
#GOAL_POSITION= 154,71
#DATE= 1915/01/01
; Set friendly positions:
; 1st Line - Liverpool
#FRIENDLY_POSITION= 140,72
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured near London OR
; Central Powers have ventured within Channel
#CANCEL_POSITION= 151,76 [5,5] [5,5] [1]
#CANCEL_POSITION= 143,79 [7,7] [3,3] [1]
}

{
#NAME= UK Build Up Fleet - Protect North Sea
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 8,20
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Rosyth
#GOAL_POSITION= 140,64
#GOAL_POSITION= 151,60
#GOAL_POSITION= 146,57
#GOAL_POSITION= 153,57
#GOAL_POSITION= 155,64
#GOAL_POSITION= 152,74
#DATE= 1914/10/01
; Set friendly positions:
; 1st Line - Rosyth
#FRIENDLY_POSITION= 140,64
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Central Powers have ventured out to North Sea
#ACTIVATE_POSITION= 151,58 [7,7] [5,5] [1]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= UK Build Up Fleet - Arctic Convoy Patrol
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 5,8
#BUILD_LENGTH= 0
#LENGTH= 7
#RANGE= 15
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Cromarty
#GOAL_POSITION= 141,58
#GOAL_POSITION= 141,40
#GOAL_POSITION= 151,35
#GOAL_POSITION= 151,28
#GOAL_POSITION= 157,25
#GOAL_POSITION= 161,18
#DATE= 1914/10/01
; Set friendly positions:
; 1st Line - Rosyth
#FRIENDLY_POSITION= 140,64
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Central Powers have ventured out to Arctic Convoys
#ACTIVATE_POSITION= 141,40 [5,5] [1,3] [1]
#ACTIVATE_POSITION= 151,35 [5,5] [1,3] [1]
#ACTIVATE_POSITION= 151,28 [5,5] [1,3] [1]
#ACTIVATE_POSITION= 157,25 [5,5] [1,3] [1]
#ACTIVATE_POSITION= 161,18 [5,5] [1,3] [1]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= UK Build Up Fleet - Atlantic Convoy Patrol
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 5,8
#BUILD_LENGTH= 0
#LENGTH= 7
#RANGE= 15
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Scapa Flow
#GOAL_POSITION= 140,54
#GOAL_POSITION= 119,59
#GOAL_POSITION= 115,59
#GOAL_POSITION= 108,63
#GOAL_POSITION= 90,72
#DATE= 1914/10/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 141,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Central Powers have ventured out to Arctic Convoys
#ACTIVATE_POSITION= 119,59 [5,5] [1,3] [1]
#ACTIVATE_POSITION= 115,59 [5,5] [1,3] [1]
#ACTIVATE_POSITION= 108,63 [5,5] [1,3] [1]
#ACTIVATE_POSITION= 90,72 [5,5] [1,3] [1]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= UK Build Up Fleet - 1917 (NM Target Shetland) (1)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 39
; NM Target
#GOAL_POSITION= 141,55
#DATE= 1917/01/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 141,55 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1917 (NM Target Shetland) (2)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 39
; NM Target
#GOAL_POSITION= 143,54
#DATE= 1917/01/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 143,54 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1917 (NM Target Shetland) (3)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#UNIT_ID= 39
#NAVAL_CRUISE= 1
; NM Target
#GOAL_POSITION= 145,53
#DATE= 1917/01/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 145,53 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1917 (NM Target Shetland) (4)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#UNIT_ID= 39
#NAVAL_CRUISE= 1
; NM Target
#GOAL_POSITION= 147,52
#DATE= 1917/01/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 147,52 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1917 (NM Target Shetland) (5)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#UNIT_ID= 39
#NAVAL_CRUISE= 1
; NM Target
#GOAL_POSITION= 149,51
#DATE= 1917/01/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 149,51 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1917 (NM Target Shetland) (6)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#UNIT_ID= 39
#NAVAL_CRUISE= 1
; NM Target
#GOAL_POSITION= 151,50
#DATE= 1917/01/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 151,50 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1917 (NM Target Shetland) (7)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#UNIT_ID= 39
#NAVAL_CRUISE= 1
; NM Target
#GOAL_POSITION= 153,49
#DATE= 1917/01/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 153,49 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1917 (NM Target Shetland) (8)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#UNIT_ID= 39
#NAVAL_CRUISE= 1
; NM Target
#GOAL_POSITION= 155,48
#DATE= 1917/01/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 155,48 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1916 (NM Target Shetland) (1)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 39
; NM Target
#GOAL_POSITION= 141,55
#DATE= 1916/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 141,55 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1916 (NM Target Shetland) (2)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 39
; NM Target
#GOAL_POSITION= 143,54
#DATE= 1916/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 143,54 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1916 (NM Target Shetland) (3)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#UNIT_ID= 39
#NAVAL_CRUISE= 1
; NM Target
#GOAL_POSITION= 145,53
#DATE= 1916/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 145,53 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1916 (NM Target Shetland) (4)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#UNIT_ID= 39
#NAVAL_CRUISE= 1
; NM Target
#GOAL_POSITION= 147,52
#DATE= 1916/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 147,52 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1916 (NM Target Shetland) (5)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#UNIT_ID= 39
#NAVAL_CRUISE= 1
; NM Target
#GOAL_POSITION= 149,51
#DATE= 1916/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 149,51 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1916 (NM Target Shetland) (6)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#UNIT_ID= 39
#NAVAL_CRUISE= 1
; NM Target
#GOAL_POSITION= 151,50
#DATE= 1916/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 151,50 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1916 (NM Target Shetland) (7)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#UNIT_ID= 39
#NAVAL_CRUISE= 1
; NM Target
#GOAL_POSITION= 153,49
#DATE= 1916/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 153,49 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1916 (NM Target Shetland) (8)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#UNIT_ID= 39
#NAVAL_CRUISE= 1
; NM Target
#GOAL_POSITION= 155,48
#DATE= 1916/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 155,48 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1915 (NM Target Shetland) (1)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 39
; NM Target
#GOAL_POSITION= 141,55
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 141,55 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1915 (NM Target Shetland) (2)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 39
; NM Target
#GOAL_POSITION= 143,54
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 143,54 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1915 (NM Target Shetland) (3)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#UNIT_ID= 39
#NAVAL_CRUISE= 1
; NM Target
#GOAL_POSITION= 145,53
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 145,53 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1915 (NM Target Shetland) (4)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#UNIT_ID= 39
#NAVAL_CRUISE= 1
; NM Target
#GOAL_POSITION= 147,52
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 147,52 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1915 (NM Target Shetland) (5)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#UNIT_ID= 39
#NAVAL_CRUISE= 1
; NM Target
#GOAL_POSITION= 149,51
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 149,51 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1915 (NM Target Shetland) (6)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#UNIT_ID= 39
#NAVAL_CRUISE= 1
; NM Target
#GOAL_POSITION= 151,50
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 151,50 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1915 (NM Target Shetland) (7)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#UNIT_ID= 39
#NAVAL_CRUISE= 1
; NM Target
#GOAL_POSITION= 153,49
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 153,49 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1915 (NM Target Shetland) (8)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#UNIT_ID= 39
#NAVAL_CRUISE= 1
; NM Target
#GOAL_POSITION= 155,48
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 155,48 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1914 (NM Target Shetland) (1)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 39
; NM Target
#GOAL_POSITION= 141,55
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 141,55 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1914 (NM Target Shetland) (2)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 39
; NM Target
#GOAL_POSITION= 143,54
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 143,54 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1914 (NM Target Shetland) (3)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#UNIT_ID= 39
#NAVAL_CRUISE= 1
; NM Target
#GOAL_POSITION= 145,53
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 145,53 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1914 (NM Target Shetland) (4)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#UNIT_ID= 39
#NAVAL_CRUISE= 1
; NM Target
#GOAL_POSITION= 147,52
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 147,52 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1914 (NM Target Shetland) (5)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#UNIT_ID= 39
#NAVAL_CRUISE= 1
; NM Target
#GOAL_POSITION= 149,51
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 149,51 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1914 (NM Target Shetland) (6)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#UNIT_ID= 39
#NAVAL_CRUISE= 1
; NM Target
#GOAL_POSITION= 151,50
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 151,50 [0,0] [1,1] [1]
}


{
#NAME= UK Build Up Fleet - 1914 (NM Target Shetland) (7)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#UNIT_ID= 39
#NAVAL_CRUISE= 1
; NM Target
#GOAL_POSITION= 153,49
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 153,49 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1914 (NM Target Shetland) (8)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#UNIT_ID= 39
#NAVAL_CRUISE= 1
; NM Target
#GOAL_POSITION= 155,48
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit already in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 155,48 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1916 (NM Target Rockall) (1)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 35
; NM Target
#GOAL_POSITION= 135,56
#DATE= 1916/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 135,56 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1916 (NM Target Rockall) (2)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 35
; NM Target
#GOAL_POSITION= 133,55
#DATE= 1916/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 133,55 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1916 (NM Target Rockall) (3)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 35
; NM Target
#GOAL_POSITION= 131,54
#DATE= 1916/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 131,54 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1916 (NM Target Rockall) (4)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 35
; NM Target
#GOAL_POSITION= 129,53
#DATE= 1916/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 129,53 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1916 (NM Target Rockall) (5)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 35
; NM Target
#GOAL_POSITION= 127,52
#DATE= 1916/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 127,52 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1916 (NM Target Rockall) (6)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 125,51
#DATE= 1916/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 125,51 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1916 (NM Target Rockall) (7)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 123,50
#DATE= 1916/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 123,50 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1916 (NM Target Rockall) (8)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 121,49
#DATE= 1916/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 121,49 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1916 (NM Target Rockall) (9)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 119,48
#DATE= 1916/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 119,48 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1916 (NM Target Rockall) (10)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 117,47
#DATE= 1916/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 117,47 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1916 (NM Target Rockall) (11)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 115,46
#DATE= 1916/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 115,46 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1916 (NM Target Rockall) (12)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 113,45
#DATE= 1916/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 113,45 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1916 (NM Target Rockall) (13)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 111,44
#DATE= 1916/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 111,44 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1916 (NM Target Rockall) (14)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 109,43
#DATE= 1916/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 109,43 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1916 (NM Target Rockall) (15)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 107,42
#DATE= 1916/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 107,42 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1916 (NM Target Rockall) (16)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 107,40
#DATE= 1916/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 107,40 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1915 (NM Target Rockall) (1)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 35
; NM Target
#GOAL_POSITION= 135,56
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 135,56 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1915 (NM Target Rockall) (2)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 35
; NM Target
#GOAL_POSITION= 133,55
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 133,55 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1915 (NM Target Rockall) (3)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 35
; NM Target
#GOAL_POSITION= 131,54
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 131,54 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1915 (NM Target Rockall) (4)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 35
; NM Target
#GOAL_POSITION= 129,53
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 129,53 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1915 (NM Target Rockall) (5)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 35
; NM Target
#GOAL_POSITION= 127,52
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 127,52 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1915 (NM Target Rockall) (6)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 125,51
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 125,51 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1915 (NM Target Rockall) (7)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 123,50
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 123,50 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1915 (NM Target Rockall) (8)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 121,49
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 121,49 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1915 (NM Target Rockall) (9)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 119,48
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 119,48 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1915 (NM Target Rockall) (10)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 117,47
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 117,47 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1915 (NM Target Rockall) (11)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 115,46
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 115,46 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1915 (NM Target Rockall) (12)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 113,45
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 113,45 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1915 (NM Target Rockall) (13)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 111,44
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 111,44 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1915 (NM Target Rockall) (14)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 109,43
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 109,43 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1915 (NM Target Rockall) (15)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 107,42
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 107,42 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet - 1915 (NM Target Rockall) (16)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 112
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 107,40
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Scapa Flow
#FRIENDLY_POSITION= 140,56
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers have ventured out to North Sea OR
; Entente unit in position
#CANCEL_POSITION= 151,58 [7,7] [5,5] [1]
#CANCEL_POSITION= 107,40 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet (Portugal) - 1914 (NM Target Rockall)
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 87
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 5
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 107,42
#DATE= 1914/01/01
; Set friendly positions:
; 1st Line - Lisbon
#FRIENDLY_POSITION= 127,108
; Set variable conditions:
; 1st Line - Portugal politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 87 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Entente unit in position
#CANCEL_POSITION= 107,42 [0,0] [1,1] [1]
}

{
#NAME= UK Build Up Fleet (Portugal) - 1914 (NM Target Rockall)
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 87
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 5
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 107,40
#DATE= 1914/01/01
; Set friendly positions:
; 1st Line - Lisbon
#FRIENDLY_POSITION= 127,108
; Set variable conditions:
; 1st Line - Portugal politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 87 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Entente unit in position
#CANCEL_POSITION= 107,40 [0,0] [1,1] [1]
}


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; FRANCE - Naval Mines
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
{
#NAME= France Build Up Fleet - Naval Mines - North Sea (1)
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 40
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 6[1,25]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 4
#RANGE= 30
#NAVAL_CRUISE= 0.0
#UNIT_ID= 0
; Mine Position
#GOAL_POSITION= 150,56
#GOAL_POSITION= 148,57
#GOAL_POSITION= 146,58
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Cherbourg
#FRIENDLY_POSITION= 144,82
; Set variable conditions:
; 1st Line - France politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 40 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= France Build Up Fleet - Naval Mines - North Sea (2)
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 40
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 6[26,50]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 4
#RANGE= 30
#NAVAL_CRUISE= 0.0
#UNIT_ID= 0
; Mine Position
#GOAL_POSITION= 152,55
#GOAL_POSITION= 154,54
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Cherbourg
#FRIENDLY_POSITION= 144,82
; Set variable conditions:
; 1st Line - France politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 40 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= France Build Up Fleet - Naval Mines - Denmark
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 40
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 6[51,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 4
#RANGE= 30
#NAVAL_CRUISE= 0.0
#UNIT_ID= 0
; Mine Position
#GOAL_POSITION= 160,64
#GOAL_POSITION= 158,65
#GOAL_POSITION= 156,66
#GOAL_POSITION= 154,67
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Cherbourg
#FRIENDLY_POSITION= 144,82
; Set variable conditions:
; 1st Line - France politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 40 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= France Build Up Fleet - 1914 (NM Target Rockall) (1)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 40
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 20
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 35
; NM Target
#GOAL_POSITION= 135,56
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - South Atlantic
#FRIENDLY_POSITION= 131,85
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Cancel condition
#CANCEL_POSITION= 135,56 [0,0] [1,1] [2]
}

{
#NAME= France Build Up Fleet - 1914 (NM Target Rockall) (2)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 40
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 20
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 35
; NM Target
#GOAL_POSITION= 133,55
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - South Atlantic
#FRIENDLY_POSITION= 131,85
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Cancel condition
#CANCEL_POSITION= 133,55 [0,0] [1,1] [2]
}

{
#NAME= France Build Up Fleet - 1914 (NM Target Rockall) (3)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 40
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 20
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 35
; NM Target
#GOAL_POSITION= 131,54
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - South Atlantic
#FRIENDLY_POSITION= 131,85
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Cancel condition
#CANCEL_POSITION= 131,54 [0,0] [1,1] [2]
}

{
#NAME= France Build Up Fleet - 1914 (NM Target Rockall) (4)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 40
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 20
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 35
; NM Target
#GOAL_POSITION= 129,53
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - South Atlantic
#FRIENDLY_POSITION= 131,85
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Cancel condition
#CANCEL_POSITION= 129,53 [0,0] [1,1] [2]
}

{
#NAME= France Build Up Fleet - 1914 (NM Target Rockall) (5)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 40
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 20
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 35
; NM Target
#GOAL_POSITION= 127,52
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - South Atlantic
#FRIENDLY_POSITION= 131,85
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Cancel condition
#CANCEL_POSITION= 127,52 [0,0] [1,1] [2]
}

{
#NAME= France Build Up Fleet - 1914 (NM Target Rockall) (6)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 40
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 20
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 125,51
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - South Atlantic
#FRIENDLY_POSITION= 131,85
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Cancel condition
#CANCEL_POSITION= 125,51 [0,0] [1,1] [2]
}

{
#NAME= France Build Up Fleet - 1914 (NM Target Rockall) (7)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 40
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 20
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 123,50
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - South Atlantic
#FRIENDLY_POSITION= 131,85
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Cancel condition
#CANCEL_POSITION= 123,50 [0,0] [1,1] [2]
}

{
#NAME= France Build Up Fleet - 1914 (NM Target Rockall) (8)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 40
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 20
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 121,49
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - South Atlantic
#FRIENDLY_POSITION= 131,85
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Cancel condition
#CANCEL_POSITION= 121,49 [0,0] [1,1] [2]
}

{
#NAME= France Build Up Fleet - 1914 (NM Target Rockall) (9)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 40
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 20
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 119,48
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - South Atlantic
#FRIENDLY_POSITION= 131,85
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Cancel condition
#CANCEL_POSITION= 119,48 [0,0] [1,1] [2]
}

{
#NAME= France Build Up Fleet - 1914 (NM Target Rockall) (10)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 40
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 20
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 117,47
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - South Atlantic
#FRIENDLY_POSITION= 131,85
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Cancel condition
#CANCEL_POSITION= 117,47 [0,0] [1,1] [2]
}

{
#NAME= France Build Up Fleet - 1914 (NM Target Rockall) (11)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 40
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 20
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 115,46
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - South Atlantic
#FRIENDLY_POSITION= 131,85
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Cancel condition
#CANCEL_POSITION= 115,46 [0,0] [1,1] [2]
}

{
#NAME= France Build Up Fleet - 1914 (NM Target Rockall) (12)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 40
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 20
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 113,45
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - South Atlantic
#FRIENDLY_POSITION= 131,85
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Cancel condition
#CANCEL_POSITION= 113,45 [0,0] [1,1] [2]
}

{
#NAME= France Build Up Fleet - 1914 (NM Target Rockall) (13)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 40
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 20
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 111,44
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - South Atlantic
#FRIENDLY_POSITION= 131,85
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Cancel condition
#CANCEL_POSITION= 111,44 [0,0] [1,1] [2]
}

{
#NAME= France Build Up Fleet - 1914 (NM Target Rockall) (14)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 40
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 20
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 109,43
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - South Atlantic
#FRIENDLY_POSITION= 131,85
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Cancel condition
#CANCEL_POSITION= 109,43 [0,0] [1,1] [2]
}

{
#NAME= France Build Up Fleet - 1914 (NM Target Rockall) (15)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 40
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 20
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 107,42
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - South Atlantic
#FRIENDLY_POSITION= 131,85
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Cancel condition
#CANCEL_POSITION= 107,42 [0,0] [1,1] [2]
}

{
#NAME= France Build Up Fleet - 1914 (NM Target Rockall) (16)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 40
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 20
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; NM Target
#GOAL_POSITION= 107,40
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - South Atlantic
#FRIENDLY_POSITION= 131,85
; Set variable conditions:
; 1st Line - UK politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Cancel condition
#CANCEL_POSITION= 107,40 [0,0] [1,1] [2]
}


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; ITALY - Naval Mines
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
{
#NAME= Italy Build Up Fleet - Naval Mines - Brindisi
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 59
#TRIGGER= 25
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 2
#RANGE= 30
#NAVAL_CRUISE= 0.0
#UNIT_ID= 0
; Mine Position
#GOAL_POSITION= 183,102
#GOAL_POSITION= 182,103
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Palermo
#FRIENDLY_POSITION= 174,109
; Set variable conditions:
; 1st Line - Italy politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 59 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Rome not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 171,101 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; ITALY - Fleet
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
{
#NAME= Italy Build Up Fleet - 1915 Fleet
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 59
#TRIGGER= 25
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 5,10
#BUILD_LENGTH= 1
#LENGTH= 8
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Fleet
#GOAL_POSITION= 178,100
#GOAL_POSITION= 173,104
#GOAL_POSITION= 182,109
#GOAL_POSITION= 179,115
#GOAL_POSITION= 190,116
#GOAL_POSITION= 195,109
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Palermo
#FRIENDLY_POSITION= 174,109
; Set variable conditions:
; 1st Line - Italy politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 59 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Rome not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 171,101 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Russia - Naval Mines
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
{
#NAME= Russia Build Up Fleet - Naval Mines - Gulf of Finland (1)
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 97
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 7[1,50]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 2
#RANGE= 30
#NAVAL_CRUISE= 0.0
#UNIT_ID= 0
; Mine Position
#GOAL_POSITION= 198,52
#GOAL_POSITION= 197,52
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Petrograd
#FRIENDLY_POSITION= 205,52
; Set variable conditions:
; 1st Line - Russia politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 97 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Moscow not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 221,65 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Russia Build Up Fleet - Naval Mines - Gulf of Finland (2)
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 97
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 7[51,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 2
#RANGE= 30
#NAVAL_CRUISE= 0.0
#UNIT_ID= 0
; Mine Position
#GOAL_POSITION= 193,53
#GOAL_POSITION= 192,54
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Petrograd
#FRIENDLY_POSITION= 205,52
; Set variable conditions:
; 1st Line - Russia politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 97 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Moscow not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 221,65 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Russia - Fleet
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
{
#NAME= Russia Build Up Fleet - 1916 Gulf of Finland (Hold)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 97
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,15
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Gulf of Finland
#GOAL_POSITION= 204,52
#DATE= 1916/01/01
; Set friendly positions:
; 1st Line - Petrograd
#FRIENDLY_POSITION= 205,52
; Set variable conditions:
; 1st Line - Russia politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 97 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Moscow not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 221,65 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Russia Build Up Fleet - 1915 Gulf of Finland (Hold)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 97
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,15
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Gulf of Finland
#GOAL_POSITION= 204,52
#DATE= 1915/01/01
; Set friendly positions:
; 1st Line - Petrograd
#FRIENDLY_POSITION= 205,52
; Set variable conditions:
; 1st Line - Russia politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 97 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Moscow not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 221,65 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Russia Build Up Fleet - 1914 Gulf of Finland (Hold)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 97
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,15
#BUILD_LENGTH= 0
#LENGTH= 7
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Gulf of Finland
#GOAL_POSITION= 204,52
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Petrograd
#FRIENDLY_POSITION= 205,52
; Set variable conditions:
; 1st Line - Russia politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 97 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Moscow not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 221,65 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Russia Build Up Fleet - Black Sea Sub
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 97
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 2,5
#BUILD_LENGTH= 0
#LENGTH= 3
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Zonguldak
#GOAL_POSITION= 211,96
#GOAL_POSITION= 205,98
#GOAL_POSITION= 205,101
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Sevastopol
#FRIENDLY_POSITION= 211,96
; Set variable conditions:
; 1st Line - Russia politically aligned with Entente and not surrendered AND
; 2nd Line - Ottoman Empire aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 97 [2] [100] [0]
#VARIABLE_CONDITION= 111 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Moscow not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 221,65 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Central Powers unit in range of Zonguldak
#CANCEL_POSITION= 208,102 [1,1] [1,1] [1]
}

{
#NAME= Russia Build Up Fleet - Black Sea Patrol (1)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 97
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 2,5
#BUILD_LENGTH= 0
#LENGTH= 6
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Bosphorus
#GOAL_POSITION= 211,96
#GOAL_POSITION= 205,98
#GOAL_POSITION= 205,101
#GOAL_POSITION= 225,101
#GOAL_POSITION= 225,101
#GOAL_POSITION= 225,101
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Sevastopol
#FRIENDLY_POSITION= 211,96
; Set variable conditions:
; 1st Line - Russia politically aligned with Entente and not surrendered AND
; 2nd Line - Ottoman Empire aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 97 [2] [100] [0]
#VARIABLE_CONDITION= 111 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Moscow not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 221,65 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Russia Build Up Fleet - Black Sea Patrol (2)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 97
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 2,5
#BUILD_LENGTH= 0
#LENGTH= 6
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Bosphorus
#GOAL_POSITION= 211,96
#GOAL_POSITION= 205,98
#GOAL_POSITION= 205,101
#GOAL_POSITION= 225,101
#GOAL_POSITION= 225,101
#GOAL_POSITION= 225,101
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Sevastopol
#FRIENDLY_POSITION= 211,96
; Set variable conditions:
; 1st Line - Russia politically aligned with Entente and not surrendered AND
; 2nd Line - Ottoman Empire aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 97 [2] [100] [0]
#VARIABLE_CONDITION= 111 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Moscow not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 221,65 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}


{
#NAME= Russia Build Up Fleet - Black Sea Patrol (3)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 97
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 2,5
#BUILD_LENGTH= 0
#LENGTH= 6
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Bosphorus
#GOAL_POSITION= 211,96
#GOAL_POSITION= 205,98
#GOAL_POSITION= 205,101
#GOAL_POSITION= 225,101
#GOAL_POSITION= 225,101
#GOAL_POSITION= 225,101
#DATE= 1916/01/01
; Set friendly positions:
; 1st Line - Sevastopol
#FRIENDLY_POSITION= 211,96
; Set variable conditions:
; 1st Line - Russia politically aligned with Entente and not surrendered AND
; 2nd Line - Ottoman Empire aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 97 [2] [100] [0]
#VARIABLE_CONDITION= 111 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Moscow not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 221,65 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; USA - Amphibious Fleet
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Fleet
{
#NAME= USA Build Up Fleet - Amphibious Assault France Support (1)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 115
#TRIGGER= 100
#LEVEL= 0
; Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
; Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 2,10
#BUILD_LENGTH= 1
#LENGTH= 10
#RANGE= 40
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Patrol/Escort
#GOAL_POSITION= 134,84
#GOAL_POSITION= 141,83
#GOAL_POSITION= 139,90
#GOAL_POSITION= 135,88
#GOAL_POSITION= 134,84
#GOAL_POSITION= 139,90
#GOAL_POSITION= 135,88
#GOAL_POSITION= 134,84
#GOAL_POSITION= 134,84
#GOAL_POSITION= 134,84
#DATE= 1915/01/01
; Set friendly positions:
; 1st Line - Liverpool
#FRIENDLY_POSITION= 140,72
; Set variable conditions:
; 1st Line - USA politically aligned with Allies and not surrendered AND
; 2nd Line - France politically aligned with Allies and surrendered
#VARIABLE_CONDITION= 115 [2] [100] [0]
#VARIABLE_CONDITION= 40 [2] [100] [1]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; 20 Allied Units in the UK
#ACTIVATE_POSITION= 147,77 [20,20] [20,20] [2]
; 1st Line - 1 Axis unit within range of London
#CANCEL_POSITION= 147,77 [20,20] [1,1] [1]
}

; Fleet
{
#NAME= USA Build Up Fleet - Amphibious Assault France Support (2)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 115
#TRIGGER= 100
#LEVEL= 0
; Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
; Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,10
#BUILD_LENGTH= 1
#LENGTH= 10
#RANGE= 40
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Patrol/Escort
#GOAL_POSITION= 135,84
#DATE= 1915/01/01
; Set friendly positions:
; 1st Line - Mid Atlantic
#FRIENDLY_POSITION= 87,89
; Set variable conditions:
; 1st Line - USA politically aligned with Allies and not surrendered AND
; 2nd Line - France politically aligned with Allies and surrendered
#VARIABLE_CONDITION= 115 [2] [100] [0]
#VARIABLE_CONDITION= 40 [2] [100] [1]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 147,77 [3]
; 20 Allied Units in the UK
#ACTIVATE_POSITION= 147,77 [20,20] [20,20] [2]
; 1st Line - 1 Axis unit within range of London
#CANCEL_POSITION= 147,77 [20,20] [1,1] [1]
}


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; USA - Fleet
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
{
#NAME= USA Build Up Fleet - St. John's -> Boston (Overflow)
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 115
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,5
#BUILD_LENGTH= 0
#LENGTH= 1
#RANGE= 2
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Boston
#GOAL_POSITION= 17,99
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - St. John's (Port)
#FRIENDLY_POSITION= 52,89
; Set variable conditions:
; 1st Line - USA politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 115 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Washington D.C. not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 4,108 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= USA Build Up Fleet - Sydney Mines -> Yarmouth (Overflow)
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 115
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,5
#BUILD_LENGTH= 0
#LENGTH= 1
#RANGE= 2
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Yarmouth
#GOAL_POSITION= 25,96
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - St. John's (Port)
#FRIENDLY_POSITION= 52,89
; Set variable conditions:
; 1st Line - USA politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 115 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Washington D.C. not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 4,108 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= USA Build Up Fleet - USA -> Brest
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 115
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 2,4
#BUILD_LENGTH= 1
#LENGTH= 7
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; USA -> Channel/Brest -> USA
#GOAL_POSITION= 20,104
#GOAL_POSITION= 20,108
#GOAL_POSITION= 134,88
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Boston (Port)
#FRIENDLY_POSITION= 17,99
; Set variable conditions:
; 1st Line - USA politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 115 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Washington D.C. not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 4,108 [3]
; Transports in position
#ACTIVATE_POSITION= 14,108 [1,1] [1,1] [2]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= USA Build Up Fleet - USA -> St. Lorient
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 115
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 2,4
#BUILD_LENGTH= 1
#LENGTH= 7
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; USA -> Channel/Brest -> USA
#GOAL_POSITION= 20,103
#GOAL_POSITION= 20,112
#GOAL_POSITION= 137,89
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Boston (Port)
#FRIENDLY_POSITION= 17,99
; Set variable conditions:
; 1st Line - USA politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 115 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Washington D.C. not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 4,108 [3]
; Transports in position
#ACTIVATE_POSITION= 14,112 [1,1] [1,1] [2]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= USA Build Up Fleet - USA -> St. Nazaire
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 115
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 2,4
#BUILD_LENGTH= 1
#LENGTH= 7
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; USA -> Bay of Biscay -> USA
#GOAL_POSITION= 20,102
#GOAL_POSITION= 20,110
#GOAL_POSITION= 139,90
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Boston (Port)
#FRIENDLY_POSITION= 17,99
; Set variable conditions:
; 1st Line - USA politically aligned with Entente and not surrendered
#VARIABLE_CONDITION= 115 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Washington D.C. not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 4,108 [3]
; Transports in position
#ACTIVATE_POSITION= 10,110 [1,1] [1,1] [2]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; GERMANY - Naval Mines
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
{
#NAME= Germany Build Up Fleet - Naval Mines - Kiel/Wilhemshaven
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 45
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 1
#RANGE= 30
#NAVAL_CRUISE= 0.0
#UNIT_ID= 0
; Mine Position
#GOAL_POSITION= 162,68
#GOAL_POSITION= 160,69
#GOAL_POSITION= 158,70
#GOAL_POSITION= 157,71
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Wilhelmshaven
#FRIENDLY_POSITION= 163,71
; Set variable conditions:
; 1st Line - Germany politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 173,74 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; GERMANY - Fleet
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
{
#NAME= Germany Build Up Fleet - Fleet -> Konigsberg (1)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 45
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,20
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Konigsberg
#GOAL_POSITION= 185,68
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Konigsberg
#FRIENDLY_POSITION= 186,69
; Set variable conditions:
; 1st Line - Germany politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 173,74 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Build Up Fleet - Fleet -> Konigsberg (2)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 45
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,3
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Konigsberg
#GOAL_POSITION= 185,67
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Wilhelmshaven
#FRIENDLY_POSITION= 163,71
; Set variable conditions:
; 1st Line - Germany politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 173,74 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Build Up Fleet - Fleet -> Konigsberg (3)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 45
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,5
#BUILD_LENGTH= 0
#LENGTH= 7
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Konigsberg
#GOAL_POSITION= 185,67
#DATE= 1914/08/15
; Set friendly positions:
; 1st Line - Wilhelmshaven
#FRIENDLY_POSITION= 163,71
; Set variable conditions:
; 1st Line - Germany politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 173,74 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Build Up Fleet - 1914 Subs (1A)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 45
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,50]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 15
#NAVAL_CRUISE= 1
#UNIT_ID= 43
; Convoy
#GOAL_POSITION= 93,70
#GOAL_POSITION= 168,69
#GOAL_POSITION= 152,43
#GOAL_POSITION= 143,36
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Straslund
#FRIENDLY_POSITION= 174,68
; Set variable conditions:
; 1st Line - Germany politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 173,74 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Build Up Fleet - 1914 Subs (1B)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 45
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[51,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 15
#NAVAL_CRUISE= 1
#UNIT_ID= 43
; Convoy
#GOAL_POSITION= 73,80
#GOAL_POSITION= 168,69
#GOAL_POSITION= 152,43
#GOAL_POSITION= 143,36
#GOAL_POSITION= 133,31
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Straslund
#FRIENDLY_POSITION= 174,68
; Set variable conditions:
; 1st Line - Germany politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 173,74 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Build Up Fleet - 1914 Subs (2A)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 45
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 2[1,50]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 15
#NAVAL_CRUISE= 1
#UNIT_ID= 43
; Convoy
#GOAL_POSITION= 89,72
#GOAL_POSITION= 152,46
#GOAL_POSITION= 138,44
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Straslund
#FRIENDLY_POSITION= 174,68
; Set variable conditions:
; 1st Line - Germany politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 173,74 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Build Up Fleet - 1914 Subs (2B)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 45
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 2[51,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 15
#NAVAL_CRUISE= 1
#UNIT_ID= 43
; Convoy
#GOAL_POSITION= 62,87
#GOAL_POSITION= 149,43
#GOAL_POSITION= 133,35
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Straslund
#FRIENDLY_POSITION= 174,68
; Set variable conditions:
; 1st Line - Germany politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 173,74 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Build Up Fleet - Subs (Unrestricted Naval Warfare) (1A)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 45
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 610[1]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 15
#NAVAL_CRUISE= 1
#UNIT_ID= 43
; Convoy
#GOAL_POSITION= 128,64
#GOAL_POSITION= 150,45
#GOAL_POSITION= 130,40
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Straslund
#FRIENDLY_POSITION= 174,68
; Set variable conditions:
; 1st Line - Germany politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 173,74 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Build Up Fleet - Subs (Unrestricted Naval Warfare) (2A)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 45
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 610[1]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 15
#NAVAL_CRUISE= 1
#UNIT_ID= 43
; Convoy
#GOAL_POSITION= 127,65
#GOAL_POSITION= 150,45
#GOAL_POSITION= 130,40
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Straslund
#FRIENDLY_POSITION= 174,68
; Set variable conditions:
; 1st Line - Germany politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 173,74 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Build Up Fleet - Subs (Unrestricted Naval Warfare) (3A)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 45
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 610[1]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 15
#NAVAL_CRUISE= 1
#UNIT_ID= 43
; Convoy
#GOAL_POSITION= 132,66
#GOAL_POSITION= 150,45
#GOAL_POSITION= 130,40
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Straslund
#FRIENDLY_POSITION= 174,68
; Set variable conditions:
; 1st Line - Germany politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 173,74 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Build Up Fleet - Subs (Unrestricted Naval Warfare) (4A)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 45
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 610[1]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 12
#RANGE= 15
#NAVAL_CRUISE= 1
#UNIT_ID= 43
; Convoy
#GOAL_POSITION= 134,78
#GOAL_POSITION= 150,45
#GOAL_POSITION= 130,40
#GOAL_POSITION= 116,74
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Straslund
#FRIENDLY_POSITION= 174,68
; Set variable conditions:
; 1st Line - Germany politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 173,74 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Build Up Fleet - Subs (Unrestricted Naval Warfare) (1B)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 45
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 626[1]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 15
#NAVAL_CRUISE= 1
#UNIT_ID= 43
; Convoy
#GOAL_POSITION= 128,64
#GOAL_POSITION= 150,45
#GOAL_POSITION= 130,40
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Straslund
#FRIENDLY_POSITION= 174,68
; Set variable conditions:
; 1st Line - Germany politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 173,74 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Build Up Fleet - Subs (Unrestricted Naval Warfare) (2B)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 45
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 626[1]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 15
#NAVAL_CRUISE= 1
#UNIT_ID= 43
; Convoy
#GOAL_POSITION= 127,65
#GOAL_POSITION= 150,45
#GOAL_POSITION= 130,40
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Straslund
#FRIENDLY_POSITION= 174,68
; Set variable conditions:
; 1st Line - Germany politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 173,74 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Build Up Fleet - Subs (Unrestricted Naval Warfare) (3B)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 45
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 626[1]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 10
#RANGE= 15
#NAVAL_CRUISE= 1
#UNIT_ID= 43
; Convoy
#GOAL_POSITION= 132,66
#GOAL_POSITION= 150,45
#GOAL_POSITION= 130,40
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Straslund
#FRIENDLY_POSITION= 174,68
; Set variable conditions:
; 1st Line - Germany politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 173,74 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Build Up Fleet - Subs (Unrestricted Naval Warfare) (4B)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 45
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 626[1]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 12
#RANGE= 15
#NAVAL_CRUISE= 1
#UNIT_ID= 43
; Convoy
#GOAL_POSITION= 134,78
#GOAL_POSITION= 150,45
#GOAL_POSITION= 130,40
#GOAL_POSITION= 116,74
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Straslund
#FRIENDLY_POSITION= 174,68
; Set variable conditions:
; 1st Line - Germany politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 173,74 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Build Up Fleet - Subs (Repeat) (1)
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 45
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,3
#BUILD_LENGTH= 0
#LENGTH= 6
#RANGE= 15
#NAVAL_CRUISE= 1
#UNIT_ID= 43
; Convoy
#GOAL_POSITION= 104,65
#GOAL_POSITION= 149,42
#GOAL_POSITION= 133,38
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Straslund
#FRIENDLY_POSITION= 174,68
; Set variable conditions:
; 1st Line - Germany politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 173,74 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Build Up Fleet - Subs (Repeat) (2)
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 45
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,3
#BUILD_LENGTH= 0
#LENGTH= 4
#RANGE= 15
#NAVAL_CRUISE= 1
#UNIT_ID= 43
; Convoy
#GOAL_POSITION= 157,25
#GOAL_POSITION= 155,58
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Straslund
#FRIENDLY_POSITION= 174,68
; Set variable conditions:
; 1st Line - Germany politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 173,74 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Build Up Fleet - Subs (Repeat) (3)
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 45
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,3
#BUILD_LENGTH= 0
#LENGTH= 6
#RANGE= 15
#NAVAL_CRUISE= 1
#UNIT_ID= 43
; Convoy
#GOAL_POSITION= 119,60
#GOAL_POSITION= 150,45
#GOAL_POSITION= 134,40
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Straslund
#FRIENDLY_POSITION= 174,68
; Set variable conditions:
; 1st Line - Germany politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 173,74 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Build Up Fleet - Subs (Repeat) (4)
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 45
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,3
#BUILD_LENGTH= 0
#LENGTH= 4
#RANGE= 15
#NAVAL_CRUISE= 1
#UNIT_ID= 43
; Convoy
#GOAL_POSITION= 161,10
#GOAL_POSITION= 153,45
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Straslund
#FRIENDLY_POSITION= 174,68
; Set variable conditions:
; 1st Line - Germany politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 173,74 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Build Up Fleet - Subs (Repeat) (5)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 45
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,3
#BUILD_LENGTH= 0
#LENGTH= 5
#RANGE= 15
#NAVAL_CRUISE= 1
#UNIT_ID= 43
; Convoy
#GOAL_POSITION= 100,68
#GOAL_POSITION= 149,45
#GOAL_POSITION= 134,45
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Straslund
#FRIENDLY_POSITION= 174,68
; Set variable conditions:
; 1st Line - Germany politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 173,74 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Build Up Fleet - Subs (Repeat) (6)
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 45
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,3
#BUILD_LENGTH= 0
#LENGTH= 4
#RANGE= 15
#NAVAL_CRUISE= 1
#UNIT_ID= 43
; Convoy
#GOAL_POSITION= 180,1
#GOAL_POSITION= 149,39
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Straslund
#FRIENDLY_POSITION= 174,68
; Set variable conditions:
; 1st Line - Germany politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 173,74 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; GERMANY - Fleet
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
{
#NAME= Germany Build Up Fleet - 1915 Fleet (Baltic Russian Patrol)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 45
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 10,25
#BUILD_LENGTH= 1
#LENGTH= 5
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Fleet
#GOAL_POSITION= 189,53
#GOAL_POSITION= 184,64
#GOAL_POSITION= 184,64
#GOAL_POSITION= 189,53
#GOAL_POSITION= 184,64
#DATE= 1915/01/01
; Set friendly positions:
; 1st Line - Konigsberg
#FRIENDLY_POSITION= 186,69
; Set variable conditions:
; 1st Line - Germany politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 173,74 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Build Up Fleet - 1914 Fleet
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 45
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 4[1,33]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 10,22
#BUILD_LENGTH= 1
#LENGTH= 15
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Fleet
#GOAL_POSITION= 160,69
#GOAL_POSITION= 160,66
#GOAL_POSITION= 160,60
#GOAL_POSITION= 153,49
#GOAL_POSITION= 143,54
#GOAL_POSITION= 133,55
#GOAL_POSITION= 107,42
#GOAL_POSITION= 127,40
#GOAL_POSITION= 153,49
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Konigsberg
#FRIENDLY_POSITION= 186,69
; Set variable conditions:
; 1st Line - Germany politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 173,74 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Build Up Fleet - 1915 Fleet
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 45
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 4[34,66]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 10,22
#BUILD_LENGTH= 1
#LENGTH= 15
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Fleet
#GOAL_POSITION= 160,69
#GOAL_POSITION= 160,66
#GOAL_POSITION= 160,60
#GOAL_POSITION= 153,49
#GOAL_POSITION= 143,54
#GOAL_POSITION= 133,55
#GOAL_POSITION= 107,42
#GOAL_POSITION= 127,40
#GOAL_POSITION= 153,49
#DATE= 1915/03/01
; Set friendly positions:
; 1st Line - Konigsberg
#FRIENDLY_POSITION= 186,69
; Set variable conditions:
; 1st Line - Germany politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 173,74 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Build Up Fleet - 1916 Fleet
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 45
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 4[67,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 10,22
#BUILD_LENGTH= 1
#LENGTH= 15
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Fleet
#GOAL_POSITION= 160,69
#GOAL_POSITION= 160,66
#GOAL_POSITION= 160,60
#GOAL_POSITION= 153,49
#GOAL_POSITION= 143,54
#GOAL_POSITION= 133,55
#GOAL_POSITION= 107,42
#GOAL_POSITION= 127,40
#GOAL_POSITION= 153,49
#DATE= 1916/03/01
; Set friendly positions:
; 1st Line - Konigsberg
#FRIENDLY_POSITION= 186,69
; Set variable conditions:
; 1st Line - Germany politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 173,74 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; AUSTRO-HUNGARY - Naval Mines
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
{
#NAME= Austro-Hungary - Naval Mines - Adriatic
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 8
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 2
#RANGE= 30
#NAVAL_CRUISE= 0.0
#UNIT_ID= 0
; Fleet
#GOAL_POSITION= 181,100
#GOAL_POSITION= 180,101
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Dubrovnik
#FRIENDLY_POSITION= 181,99
; Set variable conditions:
; 1st Line - Austro-Hungary politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 8 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Vienna not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 179,86 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; AUSTRO-HUNGARY - Fleet
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
{
#NAME= Austro-Hungary Build Up Fleet - 1916 Fleet (Hold)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 8
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,15
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Fleet
#GOAL_POSITION= 174,95
#DATE= 1916/01/01
; Set friendly positions:
; 1st Line - Dubrovnik
#FRIENDLY_POSITION= 181,99
; Set variable conditions:
; 1st Line - Austro-Hungary politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 8 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Vienna not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 179,86 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Austro-Hungary Build Up Fleet - 1915 Fleet (Hold)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 8
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,15
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Fleet
#GOAL_POSITION= 174,95
#DATE= 1915/01/01
; Set friendly positions:
; 1st Line - Dubrovnik
#FRIENDLY_POSITION= 181,99
; Set variable conditions:
; 1st Line - Austro-Hungary politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 8 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Vienna not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 179,86 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Austro-Hungary Build Up Fleet - 1914 Fleet (Hold)
#POPUP=
#FLAG= 1
#TYPE= 1
#COUNTRY_ID= 8
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,15
#BUILD_LENGTH= 0
#LENGTH= 8
#RANGE= 30
#NAVAL_CRUISE= 1
#UNIT_ID= 0
; Fleet
#GOAL_POSITION= 174,95
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Dubrovnik
#FRIENDLY_POSITION= 181,99
; Set variable conditions:
; 1st Line - Austro-Hungary politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 8 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Vienna not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 179,86 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Ottomans - Naval Mines
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
{
#NAME= Ottoman Empire - Naval Mines - Dardanelles
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 111
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 2
#RANGE= 30
#NAVAL_CRUISE= 0.0
#UNIT_ID= 0
; Mine Position
#GOAL_POSITION= 197,106
#GOAL_POSITION= 200,104
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Constantinople
#FRIENDLY_POSITION= 202,103
; Set variable conditions:
; 1st Line - Ottoman Empire politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 111 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Angora not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 211,106 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Ottoman Empire - Naval Mines - Zonguldak
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 111
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 2
#RANGE= 30
#NAVAL_CRUISE= 0.0
#UNIT_ID= 0
; Mine Position
#GOAL_POSITION= 208,101
#GOAL_POSITION= 207,102
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Constantinople
#FRIENDLY_POSITION= 202,103
; Set variable conditions:
; 1st Line - Ottoman Empire politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 111 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Angora not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 211,106 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Ottoman Empire - Naval Mines - Bosphorus
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 111
#TRIGGER= 100
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#SIZE= 1,1
#BUILD_LENGTH= 0
#LENGTH= 2
#RANGE= 30
#NAVAL_CRUISE= 0.0
#UNIT_ID= 0
; Mine Position
#GOAL_POSITION= 205,101
#DATE= 1914/08/01
; Set friendly positions:
; 1st Line - Constantinople
#FRIENDLY_POSITION= 202,103
; Set variable conditions:
; 1st Line - Ottoman Empire politically aligned with Central Powers and not surrendered
#VARIABLE_CONDITION= 111 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Angora not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 211,106 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Dummy condition
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

